home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / k_r.arc / K&R_CH1.C < prev    next >
Text File  |  1985-11-05  |  9KB  |  1,126 lines

  1. pr 1.*
  2.  
  3.  
  4. Jul 31 13:15 1984  1.00array.c Page 1
  5.  
  6.  
  7. /* example of arrays */
  8.  
  9. #define EOF -1
  10. #define SZ  25
  11. main()  /* count digits 0 - 9 and store in elements 0 - 9 */
  12. {
  13.         int c, i, digit[SZ];            /* declaration */
  14.         while (i = 1; i < SZ; ++i)      /* initialization */
  15.               digit[i - 1] = i;
  16.         printf("digits =");
  17.         for (i = 0; i < SZ; ++i)
  18.                 printf("%4d", digit[i]);
  19.         printf("\n");
  20. }
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. Jul 27 17:12 1984  1.10first.c Page 1
  71.  
  72.  
  73. /* This is a C program that prints a
  74. /* message to standard output
  75. /* (usually your terminal) */
  76.  
  77. main()
  78. {
  79.         printf("This is a C program.\n");
  80. }
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. Jul 27 17:12 1984  1.29while.c Page 1
  137.  
  138.  
  139. /* print the numbers 1 - 10 with squares and cubes */
  140.  
  141. main()
  142. {
  143.         int     st, end, step, num, sq, cube;
  144.         st = 1;
  145.         end = 10;
  146.         step = 1;
  147.         num = st;
  148.         while (num <= end)
  149.         {       sq = num * num;
  150.                 cube = num * sq;
  151.                 printf("%6d %6d %6d\n", num, sq, cube);
  152.                 num = num + step;
  153.         }
  154. }
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. Jul 27 17:12 1984  1.49for.c Page 1
  203.  
  204.  
  205. /* also prints the numbers 1 - 10 with squares
  206.    and cubes - this time with a "for" loop */
  207.  
  208. main()
  209. {
  210.         int n;
  211.  
  212.         for (n = 1; n <= 10; n = n + 1)
  213.                 printf("%6d %6d %6d\n", n, n * n, n * n * n);
  214. }
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. Jul 27 17:12 1984  1.53inc.c Page 1
  269.  
  270.  
  271. /* introduces the increment operator */
  272.  
  273. main()
  274. {
  275.         int n;
  276.  
  277.         for (n = 1; n <= 10; ++n)
  278.                 printf("%6d %6d %6d\n", n, n * n, n * n * n);
  279. }
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. Jul 27 17:12 1984  1.55symbolic.c Page 1
  335.  
  336.  
  337. /* introduces symbolic constants */
  338.  
  339. #define MAX     10
  340. #define SQ      n * n
  341. #define CU      n * n * n
  342. main()
  343. {
  344.         int n;
  345.  
  346.         for (n = 1; n <= MAX; ++n)
  347.                 printf("%6d %6d %6d\n", n, SQ, CU);
  348. }
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. Jul 27 17:12 1984  1.58copy.c Page 1
  401.  
  402.  
  403. /* copy input to output */
  404.  
  405. #define EOF -1
  406.  
  407. main()
  408. {
  409.         int c;
  410.         c = getchar();          /* see getc(3) */
  411.         while (c != EOF) {
  412.           putchar(c);           /* see putc(3) */
  413.           c = getchar();
  414.         }
  415. }
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423.  
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466. Jul 27 17:12 1984  1.62copy2.c Page 1
  467.  
  468.  
  469. /* assignments within tests */
  470.  
  471. #define EOF -1
  472. main()  /* copy input to output; 2nd version */
  473. {
  474.         int c;
  475.  
  476.         while ((c = getchar()) != EOF)
  477.                 putchar(c);
  478. }
  479.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524.  
  525.  
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532. Jul 27 17:12 1984  1.64ccount.c Page 1
  533.  
  534.  
  535. /* character counting program */
  536.  
  537. #define EOF -1
  538. main()  /* count number of characters received */
  539. {
  540.         double  nc;
  541.  
  542.         for (nc = 0; getchar() != EOF; ++nc)
  543.                         ;       /* do nothing */
  544.         printf("char count is %.0f\n", nc);
  545. }
  546.  
  547.  
  548.  
  549.  
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598. Jul 27 17:12 1984  1.67lcount.c Page 1
  599.  
  600.  
  601. /* count lines */
  602.  
  603. #define EOF -1
  604. main()  /* count number of lines in input */
  605. {
  606.         int c;
  607.         long nl = 0; /* combined declaration and initialization */
  608.  
  609.         while ((c = getchar()) != EOF)
  610.                 if (c == '\n')
  611.                         ++nl;
  612.         printf("line count is %ld\n", nl);
  613. }
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664. Jul 27 17:12 1984  1.71uccount.c Page 1
  665.  
  666.  
  667. /* count upper case and others */
  668.  
  669. #define EOF -1
  670. main()  /* print count of upper case letters
  671.         /* & all other characters received */
  672. {
  673.         int c, uc, oth;
  674.  
  675.         uc = oth = 0;   /* multiple assignment */
  676.         while ((c = getchar()) != EOF)
  677.                 if      (c >= 'A' && c <= 'Z')
  678.                         ++uc;
  679.                 else    ++oth;
  680.         printf("uc is %d, oth is %d\n", uc, oth);
  681. }
  682.  
  683.  
  684.  
  685.  
  686.  
  687.  
  688.  
  689.  
  690.  
  691.  
  692.  
  693.  
  694.  
  695.  
  696.  
  697.  
  698.  
  699.  
  700.  
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730. Jul 27 17:12 1984  1.73lwccount.c Page 1
  731.  
  732.  
  733. /* line, word, and char count */
  734. #define EOF -1
  735. #define YES  1
  736. #define NO   0
  737. main()  /* count lines, words, chars in input */
  738. {       int c, nl, nw, inword = NO;
  739.         long nc;
  740.         nl = nw = nc = 0;
  741.         while ((c = getchar()) != EOF)
  742.         {       ++nc;
  743.                 if (c == '\n')
  744.                         ++nl;
  745.                 if      (c == ' ' || c == '\t' || c == '\n')
  746.                         inword = NO;
  747.                 else if (inword == NO)
  748.                 {       inword = YES;
  749.                         ++nw;
  750.                 }
  751.         }
  752.         printf("lines, words, chars: %d %d %ld\n", nl, nw, nc);
  753. }
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796. Jul 27 17:12 1984  1.77power.c Page 1
  797.  
  798.  
  799. /* example of function calls */
  800.  
  801. main()  /* test power() for range 1 - 9 */
  802. {
  803.         int i;
  804.         printf("   Num   Sq\n");
  805.         for (i = 1; i < 10; ++i)
  806.                 printf("%5d %5d\n", i, power(i, 2));
  807. }
  808. power(x, n)     /* raise x to the n-th power; n > 0 */
  809. int x, n;       /* declaration of arguments */
  810. {
  811.         int i, p = 1;
  812.         for (i = 1; i <= n; ++i)
  813.                 p = p * x;
  814.         return (p);
  815. }
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822.  
  823.  
  824.  
  825.  
  826.  
  827.  
  828.  
  829.  
  830.  
  831.  
  832.  
  833.  
  834.  
  835.  
  836.  
  837.  
  838.  
  839.  
  840.  
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853.  
  854.  
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862. Jul 27 17:12 1984  1.85array.c Page 1
  863.  
  864.  
  865. /* example of arrays */
  866.  
  867. #define EOF -1
  868. #define SZ  10
  869. main()  /* count digits 0 - 9 and store in elements 0 - 9 */
  870. {
  871.         int c, i, digit[SZ];            /* declaration */
  872.         for (i = 0; i < SZ; ++i)        /* initialization */
  873.                 digit[i] = 0;
  874.         while ((c = getchar()) != EOF)
  875.                 if (c >= '0' && c <= '9')
  876.                         ++digit[c - '0'];
  877.         printf("digits =");
  878.         for (i = 0; i < SZ; ++i)
  879.                 printf("%4d", digit[i]);
  880.         printf("\n");
  881. }
  882.  
  883.  
  884.  
  885.  
  886.  
  887.  
  888.  
  889.  
  890.  
  891.  
  892.  
  893.  
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926.  
  927.  
  928. Jul 27 17:12 1984  1.91square.c Page 1
  929.  
  930.  
  931. /* example of call by value/reference */
  932.  
  933. #define MAX 10
  934. main()  /* test of square() */
  935. {
  936.         int answer[MAX], i;
  937.         square(answer, MAX);
  938.         for (i = 0; i < MAX; ++i)
  939.                 printf("element %d contains %2d\n", i, answer[i]);
  940. }
  941. square(ar, sz)  /* fills array ar of size sz with the
  942.                 /* square of the element number */
  943. int ar[], sz;
  944. {
  945.         for (--sz; sz >= 0; --sz)
  946.                 ar[sz] = sz * sz;
  947. }
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964.  
  965.  
  966.  
  967.  
  968.  
  969.  
  970.  
  971.  
  972.  
  973.  
  974.  
  975.  
  976.  
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984.  
  985.  
  986.  
  987.  
  988.  
  989.  
  990.  
  991.  
  992.  
  993.  
  994. Jul 27 17:12 1984  1.94getline.c Page 1
  995.  
  996.  
  997. /* example of character arrays */
  998.  
  999. #define EOF -1
  1000. #define MAX 30
  1001. main()  /* use getline() to get a name from terminal */
  1002. {
  1003.   char greet[6], name[MAX];
  1004.  
  1005.   printf("input name: ");
  1006.   if    (getline(name, MAX) > 1)
  1007.   {     greet[0] = 'H';
  1008.         greet[1] = 'E';
  1009.         greet[2] = 'L';
  1010.         greet[3] = 'L';
  1011.         greet[4] = 'O';
  1012.         greet[5] = '\0';
  1013.         printf("%s %s", greet, name);
  1014.   }
  1015.   else
  1016.         printf("no name received\n");
  1017. }
  1018. getline(line, lim)      /* function to read a line from std input;
  1019.                         /* insert NULL at end and return char count */
  1020. char    line[];         /* array where line will be stored */
  1021. int     lim;            /* max line size */
  1022. {
  1023.   int   c, i;
  1024.  
  1025.   for (i = 0; i < lim - 1 && (c = getchar()) != EOF && c != '\n'; ++i)
  1026.         line[i] = c;
  1027.   if (c == '\n')                /* retain  */
  1028.         line[i++] = c;          /* newline */
  1029.   line[i] = '\0'; return (i);
  1030. }
  1031.  
  1032.  
  1033.  
  1034.  
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060. Jul 27 17:12 1984  1.98external.c Page 1
  1061.  
  1062.  
  1063. /* example of external variables */
  1064. int max;        /* external variable */
  1065. main()
  1066. {       int i, j;
  1067.  
  1068.         i = getint();
  1069.         j = getint();
  1070.         if (findmax(i, j))
  1071.                 printf("%d is largest\n", max);
  1072.         else    printf("%d and %d are equal\n", i, j);
  1073. }
  1074. findmax(x, y)
  1075. int x, y;
  1076. {
  1077.         if      (x == y)
  1078.                 return (0);
  1079.         else if (x < y)
  1080.                 max = y;
  1081.         else    max = x;
  1082.         return (1);
  1083. }
  1084. getint()        /* function to convert ASCII
  1085.                 /* input from terminal to an int */
  1086. {       int     c, sign = 1, num = 0;
  1087.  
  1088.         printf("input integer: ");
  1089.         if      ((c = getchar()) == '-')
  1090.                 sign = -1;
  1091.         else if (c >= '0' && c <= '9')
  1092.                 num = (c - '0');
  1093.         else
  1094.                 return (0);
  1095.         while ((c = getchar()) >= '0' && c <= '9')
  1096.                 num = num * 10 + (c - '0');
  1097.         return (num * sign);
  1098. }
  1099.  
  1100.  
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120.  
  1121.  
  1122.  
  1123.  
  1124.            num = num * 10 + (c - '0');
  1125.         return (num *